home *** CD-ROM | disk | FTP | other *** search
- object frmMain: TfrmMain
- Left = 200
- Top = 108
- Width = 503
- Height = 420
- Caption = 'Keyword Searching Client Test App'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 8
- Top = 20
- Width = 31
- Height = 13
- Caption = '&Query:'
- FocusControl = edtQuery
- end
- object lblResults: TLabel
- Left = 8
- Top = 88
- Width = 38
- Height = 13
- Caption = '&Results:'
- end
- object lblDocHeader: TLabel
- Left = 8
- Top = 241
- Width = 433
- Height = 13
- AutoSize = False
- end
- object grdMatches: TDBGrid
- Left = 8
- Top = 112
- Width = 481
- Height = 113
- DataSource = dsQueryResults
- Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
- TabOrder = 8
- TitleFont.Charset = DEFAULT_CHARSET
- TitleFont.Color = clWindowText
- TitleFont.Height = -11
- TitleFont.Name = 'MS Sans Serif'
- TitleFont.Style = []
- OnDblClick = grdMatchesDblClick
- end
- object memDocument: TDBMemo
- Left = 8
- Top = 257
- Width = 481
- Height = 131
- DataField = 'Notes'
- DataSource = dsSingleRecord
- ScrollBars = ssVertical
- TabOrder = 9
- end
- object navMatches: TDBNavigator
- Left = 56
- Top = 83
- Width = 96
- Height = 25
- DataSource = dsQueryResults
- VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
- TabOrder = 6
- end
- object edtQuery: TEdit
- Left = 56
- Top = 16
- Width = 249
- Height = 21
- TabOrder = 0
- end
- object btnSearch1: TButton
- Left = 318
- Top = 14
- Width = 171
- Height = 25
- Caption = 'Single Word Search w/ Operators'
- TabOrder = 4
- OnClick = btnSearch1Click
- end
- object memSQL: TMemo
- Left = 48
- Top = 120
- Width = 417
- Height = 97
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Courier New'
- Font.Style = []
- ParentFont = False
- ScrollBars = ssBoth
- TabOrder = 7
- Visible = False
- end
- object btnSearch2: TButton
- Left = 318
- Top = 44
- Width = 171
- Height = 25
- Caption = 'Multi Word Search, No Operators'
- Enabled = False
- TabOrder = 5
- OnClick = btnSearch2Click
- end
- object chkViewSQL: TCheckBox
- Left = 56
- Top = 44
- Width = 73
- Height = 17
- Caption = '&View SQL'
- TabOrder = 1
- OnClick = chkViewSQLClick
- end
- object radIndex1: TRadioButton
- Left = 176
- Top = 44
- Width = 113
- Height = 17
- Caption = 'Use BiolifeIdx1'
- Checked = True
- TabOrder = 2
- TabStop = True
- OnClick = radIndex1Click
- end
- object radIndex2: TRadioButton
- Left = 176
- Top = 64
- Width = 113
- Height = 17
- Caption = 'Use BiolifeIdx2'
- TabOrder = 3
- OnClick = radIndex2Click
- end
- object dbMain: TDatabase
- AliasName = 'DBDEMOS'
- Connected = True
- DatabaseName = 'AppDb'
- LoginPrompt = False
- Params.Strings = (
- 'USERNAME=SA'
- 'PASSWORD=')
- SessionName = 'Default'
- Left = 64
- end
- object dsQueryResults: TDataSource
- DataSet = qryGetQueryResults
- Left = 128
- end
- object qryGetQueryResults: TQuery
- Active = True
- DatabaseName = 'AppDb'
- SQL.Strings = (
- 'SELECT * FROM Biolife WHERE BIOLIFE."Species No" IS NULL')
- Left = 96
- object qryGetQueryResultsSpeciesNo: TFloatField
- FieldName = 'Species No'
- Origin = '"BIOLIFE.DB".Species No'
- end
- object qryGetQueryResultsCommon_Name: TStringField
- DisplayLabel = 'Common Name'
- FieldName = 'Common_Name'
- Origin = '"BIOLIFE.DB".Common_Name'
- Size = 30
- end
- object qryGetQueryResultsSpeciesName: TStringField
- FieldName = 'Species Name'
- Origin = '"BIOLIFE.DB".Species Name'
- Size = 40
- end
- end
- object qryGetSingleRecord: TQuery
- DatabaseName = 'AppDb'
- SQL.Strings = (
- 'SELECT * FROM Biolife WHERE Biolife."Species No" = :SpeciesNo')
- Params.Data = {0100010009537065636965734E6F0006080000000000000000000000}
- Left = 160
- end
- object dsSingleRecord: TDataSource
- DataSet = qryGetSingleRecord
- Left = 192
- end
- end
-